Anybody have experience with the copy module DXL function? I am struggling with it for some reason. |
Re: Copy Module DXL Be more specific in your question. What struggles are you having? |
Re: Copy Module DXL
That command copies the specified module, making a new module in the same folder, with the specified name and description
string NameExistingMod = "/MyProject/MyFolder/MyExistingModule"
string NameNewModule = "MyNewModule"
ModName_ mnExisting = module (NameExistingMod)
if (!copy(mnExisting, NameNewModule, "New Description")
{ did not work
}
|
Re: Copy Module DXL llandale - Sat Mar 27 15:43:47 EDT 2010
That command copies the specified module, making a new module in the same folder, with the specified name and description
string NameExistingMod = "/MyProject/MyFolder/MyExistingModule"
string NameNewModule = "MyNewModule"
ModName_ mnExisting = module (NameExistingMod)
if (!copy(mnExisting, NameNewModule, "New Description")
{ did not work
}
Corey |